【例子介绍】微信小程序:城市地图带后端
【相关图片】
【源码结构】.
└── 城市地图带后端
├── AwesomeCoffice-master
│ ├── LICENSE
│ ├── README.md
│ ├── app.js
│ ├── app.json
│ ├── app.wxss
│ ├── image
│ │ ├── icon_spots.png
│ │ ├── icon_spots_selected.png
│ │ ├── location.png
│ │ ├── logo.png
│ │ ├── user.png
│ │ └── user_selected.png
│ ├── libs
│ │ └── underscore-min.js
│ ├── pages
│ │ ├── all_comment
│ │ │ ├── all_comment.js
│ │ │ ├── all_comment.json
│ │ │ ├── all_comment.wxml
│ │ │ └── all_comment.wxss
│ │ ├── city
│ │ │ ├── city.js
│ │ │ ├── city.json
│ │ │ ├── city.wxml
│ │ │ └── city.wxss
│ │ ├── comment
│ │ │ ├── comment.js
│ │ │ ├── comment.json
│ │ │ ├── comment.wxml
│ │ │ └── comment.wxss
│ │ ├── index
│ │ │ ├── index.js
│ │ │ ├── index.json
│ │ │ ├── index.wxml
│ │ │ └── index.wxss
│ │ ├── new
│ │ │ ├── new.js
│ │ │ ├── new.json
│ │ │ ├── new.wxml
│ │ │ └── new.wxss
│ │ └── spot_detail
│ │ ├── spot_detail.js
│ │ ├── spot_detail.json
│ │ ├── spot_detail.wxml
│ │ └── spot_detail.wxss
│ └── utils
│ └── util.js
├── awesome_coffice-master
│ ├── LICENSE
│ ├── README.md
│ ├── awesome_coffice
│ │ ├── __init__.py
│ │ ├── settings.py
│ │ ├── urls.py
│ │ └── wsgi.py
│ ├── coffee
│ │ ├── __init__.py
│ │ ├── admin.py
│ │ ├── apps.py
│ │ ├── migrations
│ │ │ ├── 0001_initial.py
│ │ │ ├── 0002_auto_20170401_1005.py
│ │ │ ├── 0003_auto_20170401_1010.py
│ │ │ ├── 0004_auto_20170401_1805.py
│ │ │ ├── 0005_auto_20170404_1453.py
│ │ │ └── __init__.py
│ │ ├── models.py
│ │ ├── serializers.py
│ │ ├── tests.py
│ │ ├── urls.py
│ │ └── views.py
│ ├── coffee_spot.csv
│ ├── import_data.py
│ ├── manage.py
│ ├── requirement.txt
│ ├── static
│ │ ├── css
│ │ │ ├── bootstrap.min.css
│ │ │ ├── bootstrap.min.css.map
│ │ │ ├── carousel.css
│ │ │ ├── font-awesome.min.css
│ │ │ ├── helper.min.css
│ │ │ ├── normalize.css
│ │ │ ├── notie.min.css
│ │ │ ├── nprogress.css
│ │ │ ├── style.css
│ │ │ ├── sweetalert2.min.css
│ │ │ └── yue.css
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ └── fontawesome-webfont.woff2
│ │ └── js
│ │ ├── bootstrap.min.js
│ │ ├── jquery-3.1.1.min.js
│ │ ├── lodash.min.js
│ │ ├── notie.min.js
│ │ ├── nprogress.js
│ │ ├── sweetalert2.min.js
│ │ ├── tether.min.js
│ │ ├── underscore-min.js
│ │ ├── zepto.min.js
│ │ └── zoom.min.js
│ ├── templates
│ │ ├── coffee
│ │ │ ├── index.html
│ │ │ ├── spot_map.html
│ │ │ └── spots.html
│ │ ├── partials
│ │ │ ├── base.html
│ │ │ ├── flash.html
│ │ │ ├── footer.html
│ │ │ ├── navbar.html
│ │ │ └── working-on.html
│ │ └── user
│ │ ├── login.html
│ │ ├── profile.html
│ │ └── signup.html
│ └── user
│ ├── __init__.py
│ ├── admin.py
│ ├── apps.py
│ ├── forms.py
│ ├── migrations
│ │ ├── 0001_initial.py
│ │ ├── 0002_auto_20170401_1805.py
│ │ ├── 0003_auto_20170401_1816.py
│ │ └── __init__.py
│ ├── models.py
│ ├── serializers.py
│ ├── tests.py
│ ├── urls.py
│ └── views.py
├── 城市地图前端.zip
└── 城市地图后端.zip
26 directories, 114 files
评论